home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Blackhawk for Windows 95 1996 November
/
Blackhawk for Windows 95 - Novermer 1996.iso
/
util
/
datasorc.exe
/
SAMPLE.ZIP
/
UNIT5.PAS
< prev
Wrap
Pascal/Delphi Source File
|
1996-04-30
|
517b
|
34 lines
unit Unit5;
interface
uses
WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons, ExtCtrls;
type
TForm5 = class(TForm)
ListBox1: TListBox;
Panel1: TPanel;
BitBtn1: TBitBtn;
procedure BitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form5: TForm5;
implementation
{$R *.DFM}
procedure TForm5.BitBtn1Click(Sender: TObject);
begin
Close;
end;
end.